home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / Snippets / Development Tools & Languages / AEGestalt / ULookupCommand.h < prev    next >
Encoding:
Text File  |  1995-02-05  |  703 b   |  40 lines  |  [TEXT/MPS ]

  1. //    ULookupCommand.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the class for TLookup command, used for
  5. //    doing the query over the network
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __ULOOKUPCOMMAND__
  11. #define __ULOOKUPCOMMAND__
  12.  
  13. #ifndef __UAEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. #ifndef __UAEDOCUMENT__
  18. #include "UAEDocument.h"
  19. #endif
  20.  
  21. class TAEDocument;
  22.  
  23. DeclareClassDesc(TLookupCommand);
  24.  
  25. class TLookupCommand : public TCommand
  26. {
  27.  
  28.     DeclareClass(TLookupCommand);
  29.  
  30. public:
  31.     TLookupCommand();
  32.     virtual void ILookupCommand(CommandNumber,
  33.                                        TAEDocument*);
  34.     virtual void DoIt();
  35.  
  36.     TAEDocument* fDocument;
  37. };
  38.  
  39. #endif
  40.